home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 6: Level 6 / 17 Bit - Level 6 (1998)(Epic Marketing)[!].iso / quartz / q0919.dms / q0919.adf / man / Fault < prev    next >
Text File  |  1997-04-10  |  1KB  |  51 lines

  1.  
  2.  
  3.  
  4.                Fault(V1.3 in C:) (V2.x/3.x internal)
  5.  
  6.  
  7.  
  8.      NAME
  9.             Fault - translate numeric error codes to ascii text.
  10.  
  11.      SYNOPSIS
  12.             Fault Fault/...
  13.  
  14.      DESCRIPTION
  15.             Normally when your Amiga has an error it returns a 
  16.         requestor telling you what you need to do. Many errors do 
  17.         not bother to open up this requestor, only a number (for 
  18.         example, 'Last command failed with error 330). This 
  19.         command accepts numeric those error codes and turns them 
  20.         into system error messages, or if the error code is not 
  21.         defined the numeric code is again displayed.
  22.  
  23.             Translates all the faults into English-lanuage 
  24.         explanations.
  25.  
  26.             The CLI and Shells (and many programs) call on Fault 
  27.         to report their errors for them.  
  28.  
  29.             In 2.x/3.x this fault code is stored into the 
  30.         variable 'result 2'.
  31.  
  32.             The AmigaDOS command also  does this but may not root 
  33.         out the exact problem. If the AmigaDOS command WHY does 
  34.         not satisfy your cuiriosity of what the error was about, 
  35.         then using Fault directly after it will expound on it.
  36.           
  37.  
  38.       EXAMPLE
  39.             1. To display the error message associated with fault 
  40.         code 220:
  41.  
  42.             FAULT 220
  43.  
  44.  
  45.  
  46.             2. To display the error messages with fault codes 
  47.         216, 220, and 330:
  48.  
  49.  
  50.             FAULT 216 220 330
  51.